home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 247 / 247.d81 / e.screen cont < prev    next >
Text File  |  2022-08-26  |  618b  |  39 lines

  1. u                            PRINT THIS
  2.  
  3.            SCREEN CONTROLS
  4.            ---------------
  5.  
  6.  POKE 53265,11
  7.  
  8.     Turns screen off (Normal = 27)
  9.  
  10.  POKE 53269,2^s
  11.     Sprite on
  12.  
  13.  POKE 53272,21
  14.  
  15.     Switch to upper case (graphic
  16.         mode). 53272 is the pointer to
  17.         where the font is.
  18.  
  19.  POKE 53272,23
  20.  
  21.     Switch to lower case (text mode)
  22.  
  23.  POKE 53280,c
  24.  
  25.     Change border color (c = 0 to 15)
  26.  
  27.  POKE 53281,c
  28.  
  29.     Change background color
  30.         (c = 0 to 15)
  31.  
  32.     53282 MULTI-COLOR/EXT BG 1
  33.     53283 multi-color/ext bg 2
  34.     53284 extended background 3
  35.     53285 sprite multi 0
  36.     53286 sprite multi 1
  37.  
  38.  
  39.  
  40.